/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ca-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.ca-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ca-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ca-logo-image {
    height: 50px;
    width: auto;
    max-width: 60px;
}

.ca-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

/* Hero Section */
.ca-hero-section {
    background: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);

    padding: 80px 0;
    text-align: center;
}

.ca-hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.ca-hero-subheadline {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.ca-rating-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ca-rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-icon {
    color: #ffc107;
    font-size: 20px;
    line-height: 1;
}

.ca-rating-stars i {
    color: #ffc107;
    font-size: 20px;
}

.ca-rating-text {
    margin-left: 10px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

/* Hero image styles removed - using inline styles for performance */

/* Included Images */
.ca-included-images-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.ca-included-image-item {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.ca-benefits-section {
    padding: 80px 0;
    background: #fff;
}

.ca-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.ca-benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ca-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ca-benefit-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ca-benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.ca-benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.ca-benefit-card p {
    color: #6c757d;
    font-size: 16px;
}

/* Product Mockup */
.ca-product-mockup-section {
    padding: 80px 0;
    background: #4CAF50;
    background: linear-gradient(90deg, #4CAF50 2%, #8BC34A 50%, #2E7D32 81%);
    color: #fff;
}

.ca-mockup-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: center;
    flex-direction: column;
}

.ca-product-video {
    width: 95%;
    max-width: 800px;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.ca-mockup-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
}

/* Main Offer */
.ca-main-offer-section {
    padding: 80px 10px;
    background: #fff;
    text-align: center;
}

.ca-main-offer-section .ca-container {
    padding: 0 10px;
}

.ca-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
    flex-wrap: nowrap;
}

.ca-price-original {
    font-size: 28px;
    color: #dc3545;
    text-decoration: line-through;
    opacity: 0.7;
}

.ca-price-current {
    font-size: 48px;
    font-weight: 800;
    color: #212529;
}

.ca-discount-badge {
    background: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ca-payment-options {
    margin: 0;
    padding: 0;
}

.ca-installments-text {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin: 0;
    padding: 0;
}

.ca-countdown-timer {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 0;
}

.ca-timer-element {
    background: transparent;
    color: #dc3545;
    padding: 15px 8px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 0;
}

.ca-timer-element span {
    display: block;
    font-size: 42px !important;
    font-weight: 700;
    color: white !important;
}

.ca-timer-element label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    color: white;
}

.ca-limited-copies-text {
    font-size: 18px;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 40px;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

.ca-cta-primary {
    font-size: 24px;
    padding: 25px 50px;
}

/* Testimonials */
.ca-testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ca-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #212529;
}

.ca-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ca-testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ca-testimonial-avatar {
    margin-bottom: 20px;
}

.ca-testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.ca-testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #495057;
}

.ca-testimonial-author strong {
    color: #4CAF50;
    font-weight: 600;
}

.ca-testimonial-author span {
    display: block;
    color: #6c757d;
    font-size: 14px;
}

.ca-cta-section {
    text-align: center;
}

/* Recipe Categories */
.ca-recipe-categories-section {
    padding: 60px 0;
    background: #fff;
}

.ca-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.ca-category-item {
    text-align: center;
}

.ca-category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ca-category-item img:hover {
    transform: translateY(-5px);
}

.ca-category-caption {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
}

/* Product Preview */
.ca-product-preview-section {
    padding: 60px 0 0 0;
    background: #fff;
}

.ca-preview-content {
    text-align: center;
}

.ca-product-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 500px;
    object-fit: contain;
}

/* What's Included */
.ca-whats-included-section {
    padding: 80px 0;
    background: #fff;
}

.ca-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ca-included-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ca-included-item i {
    font-size: 24px;
    color: #28a745;
    min-width: 30px;
}

.ca-included-item span {
    font-weight: 500;
    color: #495057;
}

/* FAQs */
.ca-faqs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ca-faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.ca-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ca-faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ca-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
}

.ca-faq-question:hover {
    background: #f8f9fa;
}

.ca-faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0;
    flex: 1;
}

.ca-faq-question i {
    color: #28a745;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.ca-faq-item.active .ca-faq-question i {
    transform: rotate(180deg);
}

.ca-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ca-faq-item.active .ca-faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.ca-faq-answer p {
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


.preguntas-frecuentes {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background: #ffffff;
}

.preguntas-frecuentes h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
    text-transform: uppercase;
}

.preguntas-frecuentes .subtitulo {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
    line-height: 1.6;
}

.pregunta-box {
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pregunta-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pregunta-titulo {
    background: #f8f9fa;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.pregunta-titulo:hover {
    background: #3498db;
    color: white;
}

.pregunta-icono {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.pregunta-box.abierta .pregunta-icono {
    transform: rotate(180deg);
}

.pregunta-box.abierta .pregunta-titulo {
    background: #3498db;
    color: white;
}

.respuesta-contenido {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.pregunta-box.abierta .respuesta-contenido {
    max-height: 500px;
}

.respuesta-texto {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.respuesta-texto strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .preguntas-frecuentes {
        margin: 40px 15px;
        padding: 15px;
    }

    .preguntas-frecuentes h2 {
        font-size: 1.5rem;
    }

    .preguntas-frecuentes .subtitulo {
        font-size: 1rem;
    }

    .pregunta-titulo {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .respuesta-texto {
        padding: 20px;
        font-size: 0.95rem;
    }
}



/* Final CTA */
.ca-final-cta-section {
    padding: 80px 0;
    background: #4CAF50;
    background: linear-gradient(90deg, #4CAF50 2%, #8BC34A 50%, #2E7D32 81%);
    color: #fff;
    text-align: center;
}

.ca-final-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ca-final-cta-content>p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ca-cta-highlight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.ca-price-reminder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ca-strike-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.ca-price-current {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.ca-discount-label {
    background: #dc3545;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.ca-cta-final-button {
    margin-bottom: 20px;
    font-size: 22px;
    padding: 20px 40px;
}

.ca-guarantee-text {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Terms Link */
.ca-terms-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ca-terms-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Modal Styles */
.ca-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.ca-modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ca-modal-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.ca-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.ca-modal-close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ca-modal-close:hover {
    opacity: 0.7;
}

.ca-modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #495057;
}

.ca-modal-body h3 {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.ca-modal-body h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ca-modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.ca-modal-body li {
    margin-bottom: 8px;
}

.ca-modal-body p {
    margin-bottom: 15px;
}

/* Footer */
.ca-footer {
    background: #212529;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ca-hero-headline {
        font-size: 32px;
    }

    .ca-hero-subheadline {
        font-size: 18px;
    }

    .ca-mockup-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ca-product-video {
        width: 95%;
        max-width: 600px;
        height: 450px;
    }

    .ca-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ca-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ca-included-grid {
        grid-template-columns: 1fr;
    }

    .ca-countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ca-timer-element {
        min-width: 50px;
        padding: 10px;
    }

    .ca-timer-element span {
        font-size: 18px;
    }

    .ca-timer-element label {
        font-size: 12px;
    }

    .ca-price-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .ca-price-current {
        font-size: 36px;
    }

    .cta-button {
        padding: 30px 25px;
        font-size: 20px;
        max-width: 95%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        min-height: 80px;
        word-wrap: break-word;
    }

    .ca-cta-primary {
        font-size: 22px;
        padding: 35px 30px;
        min-height: 90px;
    }

    .ca-logo h1 {
        font-size: 20px;
    }

    .ca-logo-image {
        height: 40px;
        max-width: 50px;
    }

    .ca-logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .ca-container {
        padding: 0 15px;
    }

    .ca-hero-headline {
        font-size: 28px;
    }

    .ca-hero-section,
    .ca-benefits-section,
    .ca-recipe-categories-section,
    .ca-product-mockup-section,
    .ca-main-offer-section,
    .ca-testimonials-section,
    .ca-whats-included-section,
    .ca-faqs-section,
    .ca-final-cta-section {
        padding: 60px 0;
    }

    .ca-product-preview-section {
        padding: 60px 0 0 0;
    }

    .ca-categories-grid {
        gap: 20px;
    }

    .ca-category-item img {
        height: 150px;
    }

    .ca-cta-highlight-box {
        padding: 30px 20px;
    }

    .ca-logo h1 {
        font-size: 18px;
    }

    .ca-logo-image {
        height: 35px;
        max-width: 45px;
    }

    .ca-logo {
        gap: 6px;
    }

    .ca-final-cta-content h2 {
        font-size: 28px;
    }

    .ca-price-current {
        font-size: 32px;
    }

    .cta-button {
        padding: 25px 15px;
        font-size: 18px;
        max-width: 98%;
        line-height: 1.4;
        min-height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
    }

    .ca-cta-primary {
        font-size: 20px;
        padding: 30px 20px;
        min-height: 95px;
    }

    .ca-price-wrapper {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .ca-price-original {
        font-size: 20px;
    }

    .ca-price-current {
        font-size: 32px;
    }

    .ca-discount-badge {
        font-size: 14px;
        padding: 8px 15px;
    }

    .ca-included-images-grid {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .ca-included-image-item {
        max-width: 100%;
        height: auto;
    }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ca-animate-fadein {
    animation: fadeInUp 0.6s ease-out;
}

/* CSS - BOTON STICKY + TIMER*/
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #19a463;
    padding: 10px 16px 8px;
    /* Reducido aún más */
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .2);
    z-index: 9999;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

.countdown-timer {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    /* Reducido de 8px a 6px */
    letter-spacing: 0.3px;
}

.countdown-timer #timer {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.mobile-sticky-cta .sticky-cta-button {
    display: block !important;
    width: 100% !important;
    background: linear-gradient(to bottom, #ffb347, #ff6a00) !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    /* Reducido de 14px a 12px */
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
    border: none !important;
    min-height: auto !important;
    /* Por si tiene min-height heredado */
    height: auto !important;
}

.mobile-sticky-cta .sticky-cta-button:hover {
    background: linear-gradient(to bottom, #ffa033, #e65c00) !important;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}


/* CSS - ANIMACION SHAKE */

.cta-button {
    animation: shake 5s ease-in-out infinite;
}

@keyframes shake {

    0%,
    90%,
    100% {
        transform: translateX(0);
    }

    92%,
    96% {
        transform: translateX(-3px);
    }

    94%,
    98% {
        transform: translateX(3px);
    }
}



/* CSS - Reemplazar la sección de .social-proof-notification */
.social-proof-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 9998;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease-out;
    border-left: 4px solid #2a6f3a;
}

.social-proof-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.proof-icon {
    width: 36px;
    height: 36px;
    background: #2a6f3a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    line-height: 1.4;
}

.proof-name {
    font-weight: 600;
    color: #19a463;
    font-size: 14px;
}

.proof-details {
    color: #5b686e;
    font-size: 12px;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .social-proof-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        bottom: 120px;
        /* Aumentado de 90px a 140px */
    }
}



/* Agregar al final de tu styles.css */
.parpadeo {
    animation: parpadeo-suave 1s ease-in-out infinite;
}

@keyframes parpadeo-suave {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}